# run the mpich test suite

# fixup default machine file
mf=${mpich_obj}/share/machines.ch_mx.LINUX
print "mf=${mf}"
>mf
i=0
while [[ -n "${any_card_host[i]}" ]]; do
  print ${any_card_host[i]}
  print ${any_card_host[i]} > ${mf}
  let i+=1
done

cd ${mpich_dir}/examples/test
make testing
[[ $? = 0 ]] && pass=1
